home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / bash-1.12 / dist / examples / startup-files / Bash_profile < prev    next >
Encoding:
Text File  |  1991-07-07  |  358 b   |  21 lines

  1. # Startup file for bash login shells.
  2. #
  3. default_dir=/usr/local/lib/
  4.  
  5. if [ "$PS1" ]; then
  6.   PS1='\u@\h(\#)$ '
  7.   ignoreeof=3
  8. fi
  9.  
  10. LOGIN_SHELL=true
  11.  
  12. # If the user has her own init file, then use that one, else use the
  13. # canonical one.
  14. if [ -f ~/.bashrc ]; then
  15.   source ~/.bashrc
  16. else if [ -f ${default_dir}Bashrc ]; then
  17.   source ${default_dir}Bashrc;
  18.   fi
  19. fi
  20.  
  21.